home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_10
/
1010065b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-08-10
|
344 b
|
17 lines
int function_expecting_reference_to_int( int & input_value);
void calling_function(void)
{
int i;
function_expecting_reference_to_int(i);
}
int function_expecting_reference_to_int( int & input_value)
{
int local_variable;
/* Do something with it */
local_variable = input_value;
...
}